home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue67 / ntserv / BeeperService.dpr next >
Encoding:
Text File  |  2000-09-22  |  231 b   |  14 lines

  1. program BeeperService;
  2.  
  3. uses
  4.   SvcMgr,
  5.   BeeperServiceu in 'BeeperServiceu.pas' {Service1: TService};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   Application.Initialize;
  11.   Application.CreateForm(TService1, Service1);
  12.   Application.Run;
  13. end.
  14.